home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / gcc / ixemul_src.lha / ixemul-41.0 / string / memmove.c < prev    next >
C/C++ Source or Header  |  1995-05-17  |  132b  |  10 lines

  1. #include <stdlib.h>
  2.  
  3. void *
  4. memmove (void *dst0, const void *src0, size_t length)
  5. {
  6.   bcopy (src0, dst0, length);
  7.   return dst0;
  8. }
  9.  
  10.